.photos {
    background-color: #1f1f1f;
    width: 100%;
    height: 100%;
    user-select: none;
}

.photos>img {
    max-height: 100%;
    max-width: 100%;
    position: relative;
    pointer-events: none;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
}

.photos>img:hover {
    cursor: grab;
}

.photos>img:active {
    cursor: grabbing;
}